home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 015 / prtscfx.arc / PRTSCFX.DOC < prev    next >
Encoding:
Text File  |  1986-11-07  |  2.9 KB  |  79 lines

  1. PRTSCFX.DOC -- Documentation for PrtScFX    11/23/83
  2.  
  3. PrtScFX is a screen dump program which prints a graphic image of a text
  4. mode display on an Epson FX or RX (not MX!) series printer.  The printout
  5. looks just like a screen display, including connected line graphics.
  6.  
  7. PrtScFX should be run once, typically from your AUTOEXEC.BAT file.  From
  8. then on, if you are in 80 column text mode, the Shift-Prtsc key will give
  9. you the prompt:
  10.  
  11. G = text graphics dump, D = darker graphics, SPACE = normal dump, Esc = cancel
  12.  
  13. and you can type:
  14.  
  15.     G        for a text mode graphics dump
  16.     D        for a better quality (double-strike) text graphics dump
  17.     Space Bar    for a "normal" screen dump (passes the request on to the
  18.         standard - or other special - screen dump utility)
  19.     Esc     to cancel the screen dump request
  20.  
  21. Either the IBM Monochrome Display or the color/graphics adapter can be
  22. used, but only 80-column TEXT mode displays are dumped.  For either display
  23. adapter, the printout duplicates the font of the IBM Monochrome Display.
  24.  
  25. PrtScFX coexists nicely with IBM's GRAPHICS program.  Just run them both in
  26. your AUTOEXEC (in either order), and then GRAPHICS will handle graphics
  27. mode displays, and PrtScFX will kick in for text mode.
  28.  
  29. PrtScFX produced the illustrations of Transend PC screens in my article
  30. (with Richard Moore), "A Communications Package for the IBM PC", in the
  31. November 1983 BYTE magazine.  For camera-ready art like this, I recommend:
  32.  
  33.  *  A fairly fresh ribbon - but not brand new (smudges).  The one we used
  34.     in the article was a little faint.
  35.  *  Good quality bond paper - not typical printout paper (the ink bleeds).
  36.  *  If available, friction feed instead of pin feed - better registration.
  37.  *  The D option for double-strike graphics.
  38.  
  39. In the article, we used a ribbon that was just a little too faint.
  40.  
  41.  
  42. PrtScFX is placed in the public domain without restriction.
  43.  
  44. Michael Geary
  45. P.O. Box 1479
  46. Los Gatos, CA 95031
  47. (408) 354-4400
  48.  
  49.  
  50. FILES
  51. -----
  52.  
  53. If you just want to use PrtScFX, you just need PRTSCFX.COM
  54.  
  55. If you want to modify and/or re-assemble PrtScFX, the source files are
  56. PRTSCFX.ASM and MONOCG.ASM.  The latter file contains the character
  57. generator data from the ROM on the display adapters.  If you don't need to
  58. modify this, just use MONOCG.OBJ.
  59.  
  60.  
  61. ASSEMBLING & LINKING
  62. --------------------
  63.  
  64. (change drive letters as needed)
  65.  
  66. B>masm PrtScFX ;
  67. B>masm MonoCG ;     (omit if you have MONOCG.OBJ)
  68. B>link PrtScFX + MonoCG ;
  69. If you have the Spacemaker program by Realia, Inc.:
  70.     B>sm PrtScFX ; /s
  71. If you don't have Spacemaker, you should get it!  For now, use:
  72.     B>exe2bin PrtScFX.exe PrtScFX.com
  73.     (Your .COM file will be larger using exe2bin)
  74. B>del PrtScFX.exe
  75.  
  76. Suggested modifications:  Handle 40 column text, clean up & document code
  77. (sorry, it started out as a "quick and dirty" program).
  78.  
  79.